MIME Library
Type
library
Description
This script library implements portions of Multipurpose Internet Mail Extensions (MIME) as described in RFCs 2045 - 2049. Use this library to implement common data formats such as email message bodies and form encoding in HTTP.
Children Properties
Function
Name | Summary | Syntax |
---|---|---|
mimeEncodeForMIMEHeader | Encode data for MIME header | mimeEncodeForMIMEHeader(<pData>,<pEncoding>) |
mimeTheMIMETypeOfExtension | Determine the MIME type for a file extension | mimeTheMIMETypeOfExtension(<pExtension>) |
mimeTheExtensionsOfMIMEType | List extensions that match a MIME type or MIME type wildcard pattern | mimeTheExtensionsOfMIMEType(<pMimeType>) |
mimeEncodeAsMIMEMultipartDocument | Build a multipart mime content type from an array of pre-encoded content | mimeEncodeAsMIMEMultipartDocument(<pContentA>,<pMultipartType>,<pParamA>) |
mimeEncodeForMIMETransfer | Encode data in content transfer encoding | mimeEncodeForMIMETransfer(<pData>,<pEncoding>) |
mimeEncodeFieldAsMIMEMultipartDocument | Generate multipart content from a field control | mimeEncodeFieldAsMIMEMultipartDocument(<pField>) |
mimeTheMIMEVersion | The MIME version this implemented in the library | mimeTheMIMEVersion() |
Command
Name | Summary | Syntax |
---|---|---|
mimeEncodeAsMIMEEmail | Create data to be sent as an email | mimeEncodeAsMIMEEmail <pBody>,<pFrom>,<pTo>,<pCc>,<pSubject>,<pAttachmentA>,<pHeadersA> |